home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr37 / ho5m.zip / HOMISC.BAT < prev    next >
DOS Batch File  |  1994-09-23  |  1KB  |  57 lines

  1. @echo off
  2. rem
  3. rem  MISC  another sample Hands On menu
  4. rem  updated Fri  09-23-1994  16:57:52
  5. rem beep 5
  6. :start
  7. homnu menu "t:Miscellaneous" "Setup" "File manager" "Chat - hotalk" "2nd Chat" "DOS Shell" "Manuals & Misc" "X_exit" nc
  8. rem  if errorlevel == 8 goto :end
  9. if errorlevel == 7 goto :end
  10. if errorlevel == 6 goto :help
  11. if errorlevel == 5 goto :shell
  12. if errorlevel == 4 goto :chat2
  13. if errorlevel == 3 goto :chat1
  14. if errorlevel == 2 goto :editor
  15. if errorlevel == 1 goto :setup
  16. goto :end
  17.  
  18. :setup
  19. rem      directed setup
  20. 1sthand setup
  21. goto :START
  22.  
  23. :editor
  24. rem obviously this particular editor is hard coded, but you can change it
  25. telemenu
  26. goto :START
  27.  
  28. :chat1
  29. rem     the smaller chat
  30. cls
  31. hotalk
  32. pause
  33. goto :start
  34.  
  35. :chat2
  36. cls
  37. telemenu chat
  38. goto :start
  39.  
  40. :shell
  41. cls
  42. DIR/W
  43. echo ....................................................
  44. echo Please enter EXIT to return to the menu
  45. echo ....................................................
  46. command
  47. goto :start
  48.  
  49. rem manuals & misc
  50. :help
  51. rem    choose 'manuals' to browse the manuals
  52. 1sthand
  53. goto :start
  54.  
  55. :end
  56. homenu.bat
  57.